home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / info / drdtips.zip / 1205.TXT < prev    next >
Text File  |  1991-12-31  |  3KB  |  65 lines

  1. Document 1205
  2. Slow Disk Transfers
  3.  
  4. Description:
  5.  
  6. Some customers may experience very slow data transfer rates when
  7. their applications are doing direct disk input. The slow
  8. transfer rate is a result of how DR DOS handles device drivers
  9. or applications which use upper memory blocks while writing data
  10. to the disk drive
  11.  
  12. Under DR DOS, disk access going through UMBs is transferred to
  13. conventional memory before it is written. It is then written one
  14. sector at a time. This reduces 1:1 interleave down to 17:1 which
  15. results in disk writes being 3 to 8 times slower than disk
  16. writes going directly through conventional memory. It is only a
  17. problem with writes to the disk, not reads.
  18.  
  19. What would cause this slow transfer rate under DR DOS?
  20.  
  21. 1) A disk I/O driver loaded into upper memory, such as the
  22. Stacker disk compressor or Disk Manager. The workaround is to
  23. load the driver in conventional memory.
  24.  
  25. Note: The DR DOS SuperStor driver averts this problem by leaving
  26. the DMA TRANSFER part of its code in conventional memory.
  27.  
  28. 2) An application that makes disk transfers through UMBs, such
  29. as Lotus 3, Paradox 3, Autocad 386, Autocad 11.
  30.  
  31. Digital Research designed DR DOS to make disk writes through
  32. conventional memory in order to protect customers with Bus
  33. Master controllers (newer PS/2 models) or some older hardware.
  34. Without this protection, data on their drives could be severly
  35. corrupted. Digital Research is currently investigating this
  36. problem. Please keep in contact with technical support for more
  37. information.
  38.  
  39. ********************************************************
  40.  
  41. Slow disk access on older systems
  42.  
  43. Some customers with old systems, BIOS etc. report slow disk
  44. access time.  This is not at initial log to the drive, but
  45. rather during file reads from within specific applications. 
  46. This is not resolved by eliminating memory manager, or booting
  47. without TSR's, etc.  SUPERPCK cannot be run due to memory
  48. limitations. Customers have reported that the problem is
  49. resolved by using DRIVER.SYS in CONFIG.SYS.  After DRIVER.SYS is
  50. loaded, refer to the drive with the new drive spec assigned; for
  51. example, A: drive might be accessed with D:.  You may use the
  52. command ASSIGN A=D, for example, in order to continue to access
  53. the drive as A: for consistency with existing applications.
  54.  
  55. Note that DRIVEPARM does achieve the same results, because the
  56. BIOS is still used for drive access.
  57.  
  58. ********************************************************
  59.  
  60. There is an apparent delay when first accessing a floppy drive,
  61. during which DR DOS actually reads data from the disk. This
  62. initial read will make subsequent commands from a floppy run
  63. faster since the directory and FAT tables have already been
  64. accessed.
  65.